home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / multlang.zip / MSTRLST.PAS < prev    next >
Pascal/Delphi Source File  |  1995-12-14  |  815b  |  41 lines

  1. unit Mstrlst;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Mcombbox, MultLang, Menus, StdCtrls;
  8.  
  9. type
  10.   TStrListDlg = class(TForm)
  11.     Label1: TLabel;
  12.     ListBox1: TListBox;
  13.     ComboBox1: TComboBox;
  14.     PopupMenu1: TPopupMenu;
  15.     Apples1: TMenuItem;
  16.     OrangeJuice1: TMenuItem;
  17.     Lingonberry1: TMenuItem;
  18.     Wildstrawberries1: TMenuItem;
  19.     Label2: TLabel;
  20.     MultLang1: TMultLang;
  21.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   StrListDlg: TStrListDlg;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. procedure TStrListDlg.FormClose(Sender: TObject; var Action: TCloseAction);
  36. begin
  37.   Action:=caFree;
  38. end;
  39.  
  40. end.
  41.